All public logs
Jump to navigation
Jump to search
Combined display of all available logs of CSE425S Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 06:40, 21 March 2022 Dennis.cosgrove talk contribs uploaded File:Outside-circles 2.svg (outside-circles_2.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs created page File:Shrinking-to-the-right-circles 3.svg (shrinking-to-the-right-circles_3.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs uploaded File:Shrinking-to-the-right-circles 3.svg (shrinking-to-the-right-circles_3.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs created page File:Outside-circles 0.svg (outside-circles_0.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs uploaded File:Outside-circles 0.svg (outside-circles_0.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs created page File:Outside-circles 3.svg (outside-circles_3.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs uploaded File:Outside-circles 3.svg (outside-circles_3.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs created page File:Outside-circles 1.svg (outside-circles_1.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs uploaded File:Outside-circles 1.svg (outside-circles_1.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs created page File:Shrinking-to-the-right-circles 2.svg (shrinking-to-the-right-circles_2.svg)
- 06:40, 21 March 2022 Dennis.cosgrove talk contribs uploaded File:Shrinking-to-the-right-circles 2.svg (shrinking-to-the-right-circles_2.svg)
- 06:39, 21 March 2022 Dennis.cosgrove talk contribs created page File:Shrinking-to-the-right-circles 4.svg (shrinking-to-the-right-circles_4.svg)
- 06:39, 21 March 2022 Dennis.cosgrove talk contribs uploaded File:Shrinking-to-the-right-circles 4.svg (shrinking-to-the-right-circles_4.svg)
- 11:17, 2 March 2022 Dennis.cosgrove talk contribs created page SML Mutable Ref (Created page with "<youtube>LYT_MLkZBcA</youtube> <nowiki>fun get_value_at_reference(reference : 'a ref) : 'a = !reference fun set_value_at_reference(reference : 'a ref, next_value : 'a)...")
- 19:04, 28 February 2022 Dennis.cosgrove talk contribs created page File:Single chained dictionary.svg
- 19:04, 28 February 2022 Dennis.cosgrove talk contribs uploaded File:Single chained dictionary.svg
- 09:05, 28 February 2022 Dennis.cosgrove talk contribs moved page Dictionary Assignment to Chained Dictionary Assignment
- 09:08, 21 February 2022 Dennis.cosgrove talk contribs created page Template:SMLUnitTesting (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 09:00, 16 February 2022 Dennis.cosgrove talk contribs created page Scan Higher Order Function Assignment (Created page with "=Background= Previously, we have built Sum_Scan_Assignment sum_scan. This is a specific version of scan where the operation is +. We will build a higher-order function s...")
- 06:05, 14 February 2022 Dennis.cosgrove talk contribs created page Sum Scan Using Higher Order Functions Assignment (Created page with "Reimplement Sum Scan using higher-order functions. =Background= [https://smlfamily.github.io/Basis/list.html SML List module] =Code to Implement= {{...")
- 05:59, 14 February 2022 Dennis.cosgrove talk contribs created page Template:SMLToDebug (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 05:57, 14 February 2022 Dennis.cosgrove talk contribs created page Curried Higher Order Function Debugging (Created page with "=Code To Debug= {{SMLToImplement|fix_me_hof_hof_a|---debug-file---|group_curry_hof_debug}} {{SMLToImplement|fix_me_hof_hof_b|---debug-file---|group_curry_hof_debug}} {{SMLTo...")
- 08:52, 9 February 2022 Dennis.cosgrove talk contribs created page Any and All Assignment (Created page with "= Group Warmup= = Background = * [https://docs.oracle.com/javase/8/docs/api/java/util/function/Predicate.html Predicate<T>] * [https://www.merriam-webster.com/dictionary/any...")
- 21:23, 7 February 2022 Dennis.cosgrove talk contribs created page Sum Scan With Tail Recursion Assignment (Created page with "=Motivation= Gain experience with converting from head recursion to tail recursion with a twist. Taking the standard simple approach would leave with you with a result opposi...")
- 02:44, 6 February 2022 Dennis.cosgrove talk contribs created page File:ImList E D C B A.svg
- 02:44, 6 February 2022 Dennis.cosgrove talk contribs uploaded File:ImList E D C B A.svg
- 20:07, 2 February 2022 Dennis.cosgrove talk contribs created page Closest To Origin Assignment (Created page with "=Code to Implement= {{SMLToImplement|closest_to_origin|closest_to_origin|warmup_closest_to_origin}} ==is_strictly_ascending== Write a function fun closest_to_origin(xys :...")
- 07:27, 2 February 2022 Dennis.cosgrove talk contribs created page Is Strictly Ascending With Pattern Matching Assignment (Created page with "Reimplement Is Strictly Ascending with pattern matching. =Code to Implement= {{SMLToImplement|is_strictly_ascending_pattern|is_strictly_a...")
- 21:23, 31 January 2022 Dennis.cosgrove talk contribs created page Sum Distances To Origin Assignment (Created page with "=Motivation= Compare implementations in Java and SML to highlight what pattern matching provides. =Code To Implement= ==Java== {{JavaToImplement|SumDistancesToOrigin|sumDista...")
- 15:21, 31 January 2022 Dennis.cosgrove talk contribs created page Sum Scan With Pattern Matching Assignment (Created page with "Sum_Scan_Assignment")
- 06:24, 26 January 2022 Dennis.cosgrove talk contribs created page Is Strictly Ascending Assignment (Created page with "=Code to Implement= {{SMLToImplement|is_strictly_ascending|is_strictly_ascending|warmup_is_strictly_ascending}} ==is_strictly_ascending== Write a function fun is_strictly_...")
- 04:45, 21 January 2022 Dennis.cosgrove talk contribs created page Sum Scan Assignment (Created page with "=Background= [https://en.wikipedia.org/wiki/Prefix_sum Prefix sum on Wikipedia] =Code to Implement= {{SMLToImplement|sum_scan|sum_scan|warmup_sum_scan}} ==sum_scan== Write...")
- 07:09, 16 January 2022 Dennis.cosgrove talk contribs changed group membership for Peyton.gozon from (none) to administrator and bureaucrat
- 07:08, 16 January 2022 User account Peyton.gozon talk contribs was created by Dennis.cosgrove talk contribs and password was sent by email
- 22:21, 7 January 2022 Dennis.cosgrove talk contribs created page My Length Assignment (Created page with "=Code to Implement= {{SMLToImplement|my_length|my_length|warmup_my_length}} ==my_length== Write a function <code>my_length</code> which evaluates to the length of the given...")
- 03:50, 19 December 2020 Dennis.cosgrove talk contribs created page File:ImmutableList iterator next.svg
- 03:50, 19 December 2020 Dennis.cosgrove talk contribs uploaded File:ImmutableList iterator next.svg
- 03:50, 19 December 2020 Dennis.cosgrove talk contribs created page File:ImmutableList iterator next next next.svg
- 03:50, 19 December 2020 Dennis.cosgrove talk contribs uploaded File:ImmutableList iterator next next next.svg
- 03:48, 19 December 2020 Dennis.cosgrove talk contribs uploaded a new version of File:ImmutableList letters.svg
- 03:40, 19 December 2020 Dennis.cosgrove talk contribs uploaded a new version of File:ImmutableList iterator.svg
- 03:40, 19 December 2020 Dennis.cosgrove talk contribs created page File:ImmutableList iterator next next.svg
- 03:40, 19 December 2020 Dennis.cosgrove talk contribs uploaded File:ImmutableList iterator next next.svg
- 03:04, 19 December 2020 Dennis.cosgrove talk contribs created page File:ImmutableList iterator.svg
- 03:04, 19 December 2020 Dennis.cosgrove talk contribs uploaded File:ImmutableList iterator.svg
- 03:03, 19 December 2020 Dennis.cosgrove talk contribs created page File:ImmutableList letters.svg
- 03:03, 19 December 2020 Dennis.cosgrove talk contribs uploaded File:ImmutableList letters.svg
- 02:28, 19 December 2020 Dennis.cosgrove talk contribs created page Template:RubyRequireRelative (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 04:41, 8 December 2020 Dennis.cosgrove talk contribs created page Template:RubyModuleToImplement (Created page with "<table cellspacing="0" cellpadding="0" border="0" style="background: transparent; margin-top:0.5em;border:1px #2424b3 solid;padding:0.5em;background-color: #e7e6fe"> <tr valig...")
- 21:39, 2 December 2020 Dennis.cosgrove talk contribs created page File:Convex polygon bounds.png