Day 5: Print Queue

Megathread guidelines

  • Keep top level comments as only solutions, if you want to say something other than a solution put it in a new post. (replies to comments can be whatever)
  • You can send code in code blocks by using three backticks, the code, and then three backticks or use something such as https://topaz.github.io/paste/ if you prefer sending it through a URL

FAQ

  • HeckGazer@programming.dev
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    10 days ago

    Because you’re just sorting integers and in a single pass, the a == b and a > b distinction doesn’t actually matter here, so the cmp can very simply be is a|b in rules, no map needed.

    Edit: I realise it would be a sidegrade for your case because of how you did P1, just thought it was an interesting insight, especially for those that did P1 by checking if the input was sorted using the same custom compare.

    func solution(input string) (int, int) {
    	// rules: ["a|b", ...]
    	// updates: [[1, 2, 3, 4], ...]
    	var rules, updates = parse(input)
    
    	sortFunc := func(a int, b int) int {
    		if slices.Contains(rules, strconv.Itoa(a)+"|"+strconv.Itoa(b)) {
    			return -1
    		}
    		return 1
    	}
    
    	var sumOrdered = 0
    	var sumUnordered = 0
    	for _, update := range updates {
    		if slices.IsSortedFunc(update, sortFunc) {
    			sumOrdered += update[len(update)/2]
    		} else {
    			slices.SortStableFunc(update, sortFunc)
    			sumUnordered += update[len(update)/2]
    		}
    	}
    	return sumOrdered, sumUnordered
    }