Frans Bergman il y a 2 ans
Parent
commit
83ffce7a59
2 fichiers modifiés avec 16 ajouts et 0 suppressions
  1. 0 0
      6.input
  2. 16 0
      6.rb

Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
6.input


+ 16 - 0
6.rb

@@ -0,0 +1,16 @@
+require 'set'
+
+@input = File.read("6.input").split("\n")
+
+def part(window_size)
+  @input[0].chars.each_with_index do |c, i|
+    chunk = @input[0].chars[(i..i+(window_size-1))]
+    if Set.new(chunk).length == window_size then
+      puts i + window_size
+      break
+    end
+  end
+end
+
+part(4)
+part(14)

Certains fichiers n'ont pas été affichés car il y a eu trop de fichiers modifiés dans ce diff