-
Notifications
You must be signed in to change notification settings - Fork 8
/
pid-to-num.cvs
4831 lines (4831 loc) · 127 KB
/
pid-to-num.cvs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
36~100~The 3n + 1 problem
37~101~The Blocks Problem
38~102~Ecological Bin Packing
39~103~Stacking Boxes
40~104~Arbitrage
41~105~The Skyline Problem
42~106~Fermat vs. Pythagoras
43~107~The Cat in the Hat
44~108~Maximum Sum
45~109~SCUD Busters
46~110~Meta-Loopless Sorts
47~111~History Grading
48~112~Tree Summing
49~113~Power of Cryptography
50~114~Simulation Wizardry
51~115~Climbing Trees
52~116~Unidirectional TSP
53~117~The Postal Worker Rings Once
54~118~Mutant Flatworld Explorers
55~119~Greedy Gift Givers
56~120~Stacks of Flapjacks
57~121~Pipe Fitters
58~122~Trees on the level
59~123~Searching Quickly
60~124~Following Orders
61~125~Numbering Paths
62~126~The Errant Physicist
63~127~"Accordian" Patience
64~128~Software CRC
65~129~Krypton Factor
66~130~Roman Roulette
67~131~The Psychic Poker Player
68~132~Bumpy Objects
69~133~The Dole Queue
70~134~Loglan-A Logical Language
71~135~No Rectangles
72~136~Ugly Numbers
73~137~Polygons
74~138~Street Numbers
75~139~Telephone Tangles
76~140~Bandwidth
77~141~The Spot Game
78~142~Mouse Clicks
79~143~Orchard Trees
80~144~Student Grants
81~145~Gondwanaland Telecom
82~146~ID Codes
83~147~Dollars
84~148~Anagram checker
85~149~Forests
86~150~Double Time
87~151~Power Crisis
88~152~Tree's a Crowd
89~153~Permalex
90~154~Recycling
91~155~All Squares
92~156~Ananagrams
93~157~Route Finding
94~158~Calendar
95~159~Word Crosses
96~160~Factors and Factorials
97~161~Traffic Lights
98~162~Beggar My Neighbour
99~163~City Directions
100~164~String Computer
101~165~Stamps
102~166~Making Change
103~167~The Sultan's Successors
104~168~Theseus and the Minotaur
105~169~Xenosemantics
106~170~Clock Patience
107~171~Car Trialling
108~172~Calculator Language
109~173~Network Wars
110~174~Strategy
111~175~Keywords
112~176~City Navigation
113~177~Paper Folding
114~178~Shuffling Patience
115~179~Code Breaking
116~180~Eeny Meeny
117~181~Hearts
118~182~Bonus Bonds
119~183~Bit Maps
120~184~Laser Lines
121~185~Roman Numerals
122~186~Trip Routing
123~187~Transaction Processing
124~188~Perfect Hash
125~189~Pascal Program Lengths
126~190~Circle Through Three Points
127~191~Intersection
128~192~Synchronous Design
129~193~Graph Coloring
130~194~Triangle
131~195~Anagram
132~196~Spreadsheet
133~197~Cube
134~198~Peter's Calculator
135~199~Partial differential equations
136~200~Rare Order
137~201~Squares
138~202~Repeating Decimals
139~203~Running Lights Visibility Calculator
140~204~Robot Crash
141~205~Getting There
142~206~Meals on Wheels Routing System
143~207~PGA Tour Prize Money
144~208~Firetruck
145~209~Triangular Vertices
146~210~Concurrency Simulator
147~211~The Domino Effect
148~212~Use of Hospital Facilities
149~213~Message Decoding
150~214~Code Generation
151~215~Spreadsheet Calculator
152~216~Getting in Line
153~217~Radio Direction Finder
154~218~Moth Eradication
155~219~Department of Redundancy Department
156~220~Othello
157~221~Urban Elevations
158~222~Budget Travel
159~223~Classifying Lots in a Subdivision
160~224~Kissin' Cousins
161~225~Golygons
162~226~MIDI Preprocessing
163~227~Puzzle
164~228~Resource Allocation
165~229~Scanner
166~230~Borrowers
167~231~Testing the CATCHER
168~232~Crossword Answers
169~233~Package Pricing
170~234~Switching Channels
171~235~Typesetting
172~236~VTAS - Vessel Traffic Advisory Service
173~237~Monitoring Wheelchair Patients
174~238~Jill's Bike
175~239~Tempus et mobilius. Time and motion
176~240~Variable Radix Huffman Encoding
177~241~Sail Race
178~242~Stamps and Envelope Size
179~243~Theseus and the Minotaur (II)
180~244~Train Time
181~245~Uncompress
182~246~10-20-30
183~247~Calling Circles
184~248~Cutting Corners
185~249~Bang the Drum Slowly
186~250~Pattern Matching Prelims
187~251~Nondeterministic Trellis Automata
188~252~Trucking
189~253~Cube painting
190~254~Towers of Hanoi
191~255~Correct Move
192~256~Quirksome Squares
193~257~Palinwords
194~258~Mirror Maze
195~259~Software Allocation
196~260~Il Gioco dell'X
197~261~The Window Property
198~262~Transferable Voting
199~263~Number Chains
200~264~Count on Cantor
201~265~Dining Diplomats
202~266~Stamping Out Stamps
203~267~Of(f) Course!
204~268~Double Trouble
205~269~Counting Patterns
206~270~Lining Up
207~271~Simply Syntax
208~272~TEX Quotes
209~273~Jack Straws
210~274~Cat and Mouse
211~275~Expanding Fractions
212~276~Egyptian Multiplication
213~277~Cabinets
214~278~Chess
215~279~Spin
216~280~Vertex
217~281~Rubik's Cube
218~282~Rename
219~283~Compress
220~284~Logic
221~285~Crosswords
222~286~Dead Or Not -- That Is The Question
223~287~Text Comparsion
224~288~Arithmetic Operations With Large Integers
225~289~A Very Nasty Text Formatter
226~290~Palindroms <---> smordnilaP
227~291~The House Of Santa Claus
228~292~Presentation Error
229~293~Bits
230~294~Divisors
231~295~Fatman
232~296~Safebreaker
233~297~Quadtrees
234~298~Race Tracks
235~299~Train Swapping
236~300~Maya Calendar
237~301~Transportation
238~302~John's trip
239~303~Pipe
240~304~Department
241~305~Joseph
242~306~Cipher
243~307~Sticks
244~308~Tin Cutter
245~309~FORCAL
246~310~L--system
247~311~Packets
248~312~Crosswords (II)
249~313~Intervals
250~314~Robot
251~315~Network
252~316~Stars
253~317~Hexagon
254~318~Domino Effect
255~319~Pendulum
256~320~Border
257~321~The New Villa
258~322~Ships
259~323~Jury Compromise
260~324~Factorial Frequencies
261~325~Identifying Legal Pascal Real Constants
262~326~Extrapolation Using a Difference Table
263~327~Evaluating Simple C Expressions
264~328~The Finite State Text Processing Machine
265~329~PostScript Emulation
266~330~Inventory Maintenance
267~331~Mapping the Swaps
268~332~Rational Numbers from Repeating Fractions
269~333~Recognizing Good ISBNs
270~334~Identifying Concurrent Events
271~335~Processing MX Records
272~336~A Node Too Far
273~337~Interpreting Control Sequences
274~338~Long Multiplication
275~339~SameGame Simulation
276~340~Master-Mind Hints
277~341~Non-Stop Travel
278~342~HTML Syntax Checking
279~343~What Base Is This?
280~344~Roman Digititis
281~345~It's Ir-Resist-Able!
282~346~Getting Chorded
283~347~Run
284~348~Optimal Array Multiplication Sequence
285~349~Transferable Voting (II)
286~350~Pseudo-Random Numbers
287~351~"Cheapest" Scores
288~352~The Seasonal War
289~353~Pesky Palindromes
290~354~Crazy Calculator
291~355~The Bases Are Loaded
292~356~Square Pegs And Round Holes
293~357~Let Me Count The Ways
294~358~Don't Have A Cow
295~359~Sex Assignments And Breeding Experiments
296~360~Don't Get Hives From This One!
297~361~Cops and Robbers
298~362~18000 Seconds Remaining
299~363~Approximate Matches
300~364~Constitutional Computing
301~365~Welfare Reform
302~366~Cutting Up
303~367~Halting Factor Replacement Systems
304~368~Indexing Web Pages
305~369~Combinations
306~370~Bingo
307~371~Ackermann Functions
308~372~WhatFix Notation
309~373~Romulan Spelling
310~374~Big Mod
311~375~Inscribed Circles and Isosceles Triangles
312~376~More Triangles ... THE AMBIGUOUS CASE
313~377~Cowculations
314~378~Intersecting Lines
315~379~Hi-Q
316~380~Call Forwarding
317~381~Making the Grade
318~382~Perfection
319~383~Shipping Routes
320~384~Slurpys
321~385~DNA Translation
322~386~Perfect Cubes
323~387~A Puzzling Problem
324~388~Galactic Import
325~389~Basically Speaking
326~390~Letter Sequence Analysis
327~391~Mark-up
328~392~Polynomial Showdown
329~393~The Doors
330~394~Mapmaker
331~395~Board Silly
332~396~Top Dog
333~397~Equation Elation
334~398~18-Wheeler Caravans (aka Semigroups)
335~399~Another Puzzling Problem
341~400~Unix ls
342~401~Palindromes
343~402~M*A*S*H
344~403~Postscript
345~404~Radar Scopes
346~405~Message Routing
347~406~Prime Cuts
348~407~Gears on a Board
349~408~Uniform Generator
350~409~Excuses Excuses!
351~410~Station Balance
352~411~Centipede Collisions
353~412~Pi
354~413~Up and Down Sequences
355~414~Machined Surfaces
356~415~Sunrise
357~416~LED Test
358~417~Word Index
359~418~Molecules
360~419~Matching Meetings
361~420~Supercomputer Selection The Sequel
362~421~Polygonal Puzzle
363~422~Word-Search Wonder
364~423~MPI Maelstrom
365~424~Integer Inquiry
366~425~Enigmatic Encryption
367~426~Fifth Bank of Swamp County
368~427~FlatLand Piano Movers
369~428~Swamp County Roofs
370~429~Word Transformation
371~430~Swamp County Supervisors
372~431~Trial of the Millennium
373~432~Modern Art
374~433~Bank (Not Quite O.C.R.)
375~434~Matty's Blocks
376~435~Block Voting
377~436~Arbitrage (II)
378~437~The Tower of Babylon
379~438~The Circumference of the Circle
380~439~Knight Moves
381~440~Eeny Meeny Moo
382~441~Lotto
383~442~Matrix Chain Multiplication
384~443~Humble Numbers
385~444~Encoder and Decoder
386~445~Marvelous Mazes
387~446~Kibbles "n" Bits "n" Bits "n" Bits
388~447~Population Explosion
389~448~OOPS!
390~449~Majoring in Scales
391~450~Little Black Book
392~451~Poker Solitaire Evaluator
393~452~Project Scheduling
394~453~Intersecting Circles
395~454~Anagrams
396~455~Periodic Strings
397~456~Robotic Stacker
398~457~Linear Cellular Automata
399~458~The Decoder
400~459~Graph Connectivity
401~460~Overlapping Rectangles
402~461~The Reservation Maker
403~462~Bridge Hand Evaluator
404~463~Polynomial Factorization
405~464~Sentence/Phrase Generator
406~465~Overflow
407~466~Mirror Mirror
408~467~Synching Signals
409~468~Key to Success
410~469~Wetlands of Florida
411~470~Nasty Virus
412~471~Magic Numbers
413~472~Simultaneous Equations
414~473~Raucous Rockers
415~474~Heads / Tails Probability
416~475~Wild Thing
417~476~Points in Figures: Rectangles
418~477~Points in Figures: Rectangles and Circles
419~478~Points in Figures: Rectangles Circles Triangles
420~479~Irrigation Flow Rates
421~480~Tempus Fugit
422~481~What Goes Up
423~482~Permutation Arrays
424~483~Word Scramble
425~484~The Department of Redundancy Department
426~485~Pascal's Triangle of Death
427~486~English-Number Translator
428~487~Boggle Blitz
429~488~Triangle Wave
430~489~Hangman Judge
431~490~Rotating Sentences
432~491~Tile Topology
433~492~Pig-Latin
434~493~Rational Spiral
435~494~Kindergarten Counting Game
436~495~Fibonacci Freeze
437~496~Simply Subsets
438~497~Strategic Defense Initiative
439~498~Polly the Polynomial
440~499~What's The Frequency Kenneth?
441~500~Table
442~501~Black Box
443~502~DEL command
444~503~Parallelepiped walk
445~504~Random number
446~505~Moscow time
447~506~System Dependencies
448~507~Jill Rides Again
449~508~Morse Mismatches
450~509~RAID!
451~510~Optimal Routing
452~511~Do You Know the Way to San Jose?
453~512~Spreadsheet Tracking
454~513~Window Frames
455~514~Rails
456~515~King
457~516~Prime Land
458~517~Word
459~518~Time
460~519~Puzzle (II)
461~520~Append
462~521~Gossiping
463~522~Schedule Problem
464~523~Minimum Transport Cost
465~524~Prime Ring Problem
466~525~Milk Bottle Data
467~526~String Distance and Transform Process
468~527~The partition of a cake
469~528~The Problem of Train Setout
470~529~Addition Chains
471~530~Binomial Showdown
472~531~Compromise
473~532~Dungeon Master
474~533~Equation Solver
475~534~Frogger
476~535~Globetrotter
477~536~Tree Recovery
478~537~Artificial Intelligence?
479~538~Balancing Bank Accounts
480~539~The Settlers of Catan
481~540~Team Queue
482~541~Error Correction
483~542~France '98
484~543~Goldbach's Conjecture
485~544~Heavy Cargo
486~545~Heads
487~546~Image Recognizer
488~547~DDF
489~548~Tree
490~549~Evaluating an Equations Board
491~550~Multiplying by Rotation
492~551~Nesting a Bunch of Brackets
493~552~Filling the Gaps
494~553~Simply proportion
495~554~Caesar Cypher
496~555~Bridge Hands
497~556~Amazing
498~557~Burger
499~558~Wormholes
500~559~Squares (II)
501~560~Magic
502~561~Jackpot
503~562~Dividing coins
504~563~Crimewave
505~564~Gaston
506~565~Pizza Anyone?
507~566~Adam's Genes
508~567~Risk
509~568~Just the Facts
510~569~Horse Shoe Scoring
511~570~Stats
512~571~Jugs
513~572~Oil Deposits
514~573~The Snail
515~574~Sum It Up
516~575~Skew Binary
517~576~Haiku Review
518~577~WIMP
519~578~Polygon Puzzler
520~579~Clock Hands
521~580~Critical Mass
522~581~Word Search
523~582~Randomly Wired Neural Nets
524~583~Prime Factors
525~584~Bowling
526~585~Triangles
527~586~Instant Complexity
528~587~There's treasure everywhere!
529~588~Video Surveillance
530~589~Pushing Boxes
531~590~Always on the run
532~591~Box of Bricks
533~592~Island of Logic
534~593~MBone
535~594~One Little Two Little Three Little Endians
536~595~A Major Problem
537~596~The Incredible Hull
538~597~Last Name First Please
539~598~Bundling Newspapers
540~599~The Forrest for the Trees
541~600~A Duckpin Tournament
542~601~The PATH
543~602~What Day Is It?
544~603~Parking Lot
545~604~The Boggle Game
546~605~The Rotating Disk
547~606~Keeps Going and Going and ...
548~607~Scheduling Lectures
549~608~Counterfeit Dollar
550~609~Metal Cutting
551~610~Street Directions
552~611~Parallel Deadlock
553~612~DNA Sorting
554~613~Numbers That Count
555~614~Mapping the Route
556~615~Is It A Tree?
557~616~Coconuts Revisited
558~617~Nonstop Travel
559~618~Doing Windows
560~619~Numerically Speaking
561~620~Cellular Structure
562~621~Secret Research
563~622~Grammar Evaluation
564~623~500!
565~624~CD
566~625~Compression
567~626~Ecosystem
568~627~The Net
569~628~Passwords
570~629~Test
571~630~Anagrams (II)
572~631~Microzoft Calendar
573~632~Compression (II)
574~633~A Chess Knight
575~634~Polygon
576~635~Clock solitaire
577~636~Squares (III)
578~637~Booklet Printing
579~638~Finding Rectangles
580~639~Don't Get Rooked
581~640~Self Numbers
582~641~Do the Untwist
583~642~Word Amalgamation
584~643~Bulk Mailing
585~644~Immediate Decodability
586~645~File Mapping
587~646~The Gourmet Club
588~647~Chutes and Ladders
589~648~Stamps (II)
590~649~You Who?
591~650~Bowl
592~651~Deck
593~652~Eight
594~653~Gizilch
595~654~Ratio
596~655~Scrabble
597~656~Optimal Programs
598~657~The die is cast
599~658~It's not a Bug it's a Feature!
600~659~Reflections
601~660~Going in circles on Alpha Centauri
602~661~Blowing Fuses
603~662~Fast Food
604~663~Sorting Slides
605~664~Single-Player Games
606~665~False coin
607~666~Rating
608~667~Fence
609~668~Parliament
610~669~Defragment
611~670~The dog task
612~671~Spell checker
613~672~Gangsters
614~673~Parentheses Balance
615~674~Coin Change
616~675~Convex Hull of the Polygon
617~676~Horse Step Maze
618~677~All Walks of length "n" from the first node
619~678~Schedule of Taiwan Baseball League
620~679~Dropping Balls
621~680~Movement of Reading Head
622~681~Convex Hull Finding
623~682~Whoever-pick-the-last-one-lose
624~683~Character Decoding
625~684~Integral Determinant
626~685~Least Path Cost
627~686~Goldbach's Conjecture (II)
628~687~Lattice Practices
629~688~Mobile Phone Coverage
630~689~Napoleon's Grumble
631~690~Pipeline Scheduling
632~691~Triangle Partition
633~692~BUT We Need a Diagram
634~693~Digital Racing Circuit
635~694~The Collatz Sequence
636~695~Placing the Ops
637~696~How Many Knights
638~697~Jack and Jill
639~698~Index
640~699~The Falling Leaves
641~700~Date Bugs
642~701~The Archeologists' Dilemma
643~702~The Vindictive Coach
644~703~Triple Ties: The Organizer's Nightmare
645~704~Colour Hash
646~705~Slash Maze
647~706~LC-Display
648~707~Robbery
649~708~Dreisam Equations
650~709~Formatting Text
651~710~The Game
652~711~Dividing up
653~712~S-Trees
654~713~Adding Reversed Numbers
655~714~Copying Books
656~715~Substitution Cipher
657~716~Commedia dell' arte
658~717~Calculating Expressions on Turing Machine
659~718~Skyscraper Floors
660~719~Glass Beads
661~720~Hares and Foxes
662~721~Invitation Cards
663~722~Lakes
664~723~Comment Removal
665~724~Reverse
666~725~Division
667~726~Decode
668~727~Equation
669~728~Scatter Point Plot
670~729~The Hamming Distance Problem
671~730~Morse Code Generation
672~731~Numerical Summation of a Series
673~732~Anagrams by Stack
674~733~Follow the Folding Dot
675~734~The Programmer's Hex
676~735~Dart-a-Mania
677~736~Lost in Space
678~737~Gleaming the Cubes
679~738~A Logical Problem
680~739~Soundex Indexing
681~740~Baudot Data Communication Code
682~741~Burrows Wheeler Decoder
683~742~Domino Game
684~743~The MTM Machine
685~744~Triangular Museum
686~745~Numeric Puzzles Again!
687~746~Polygon Visibility
688~747~Grid Soccer
689~748~Exponentiation
690~749~Machine Repair Simulation
691~750~8 Queens Chess Problem
692~751~Triangle War
693~752~Unscrambling Images
694~753~A Plug for UNIX
695~754~Treasure Hunt
696~755~487--3279
697~756~Biorhythms
698~757~Gone Fishing
699~758~The Same Game
700~759~The Return of the Roman Empire
701~760~DNA Sequencing
702~761~Transform those strings
703~762~We Ship Cheap
704~763~Fibinary Numbers
705~764~Pentominos
706~765~References
707~766~Sum of powers
708~767~Game
709~768~Crossword
710~769~Magic of David Copperfield
711~770~Puncher
712~771~Flying Stars
713~772~Divide et unita
714~773~The JustaPox Language
715~774~Driving in City Squares
716~775~Hamiltonian Cycle
717~776~Monkeys in a Regular Forest
718~777~Codebreakers
719~778~Recording a tape
720~779~Wily Hacker's Problem
721~780~Sentence Generator
722~781~Optimisation
723~782~Contour Painting
724~783~Trains
725~784~Maze Exploration
726~785~Grid Colouring
727~786~Working with Relations
728~787~Maximum Sub-sequence Product
729~788~One Day Tours
730~789~Indexing
731~790~Head Judge Headache
732~791~Term Reductions
733~792~Program Modules
734~793~Network Connections
735~794~Straightest Paths
736~795~Sandorf's Cipher
737~796~Critical Links
738~797~Two Way Traffic
739~798~Tile Puzzle
740~799~Safari Holiday
741~800~Crystal Clear
742~801~Flight Planning
743~802~Lead or Gold
744~803~Page Selection by Keyword Matching
745~804~Petri Net Simulation
746~805~Polygon Intersections
747~806~Spatial Structures
748~807~Towers of Powers
749~808~Bee Breeding
750~809~Bullet Hole
751~810~A Dicey Problem
752~811~The Fortified Forest
753~812~Trade on Verweggistan
754~813~Robot
755~814~The Letter Carrier's Rounds
756~815~Flooded!
757~816~Abbott's Revenge
758~817~According to Bartjens
759~818~Cutting Chains
760~819~Gifts Large and Small
761~820~Internet Bandwidth
762~821~Page Hopping
763~822~Queue and A
764~823~Stopper Stumper
765~824~Coast Tracker
766~825~Walking on the Safe Side
767~826~Symbolic Numerical System
768~827~Buddy Memory Allocator
769~828~Deciphering Messages
770~829~Almost Balanced Trees
771~830~Shark
772~831~Document Validator
773~832~Financial Risk
774~833~Water Falls
775~834~Continued Fractions
776~835~Square of Primes
777~836~Largest Submatrix
778~837~Light and Transparencies
779~838~Worm World
780~839~Not so Mobile
781~840~Deadlock Detection
782~841~Snake
783~842~Crossword Puzzles
784~843~Crypt Kicker
785~844~Pousse
786~845~Gas Station Numbers
787~846~Steps
788~847~A Multiplication Game
789~848~Fmt
790~849~Radar Tracking
791~850~Crypt Kicker II
792~851~Maze
793~852~Deciding victory in Go
794~853~DVD Subtitles
795~854~Worse Code
796~855~Lunch in Grid City
797~856~The Vigenère Cipher
798~857~Quantiser
799~858~Berry Picking
800~859~Chinese Checkers
801~860~Entropy Text Analyzer
802~861~Little Bishops
803~862~Origami
804~863~Process Scheduling
805~864~Scheme Pretty-Printing
806~865~Substitution Cypher
807~866~Intersecting Line Segments
808~867~Storing Images in a Sequence
809~868~Numerical Maze
810~869~Airline Comparison
811~870~Intersecting Rectangles
812~871~Counting Cells in a Blob
813~872~Ordering
814~873~Loan (II)
815~874~2D Representations
816~875~Monopoly
817~876~Balanced Expressions
818~877~Offset Polygons
819~878~Rotating Tetris Pieces
820~879~Circuit Nets
821~880~Cantor Fractions
822~881~Points Polygons and Containers
823~882~The Mailbox Manufacturers Problem
824~883~Overlapping Rectangles
825~884~Factorial Factors
826~885~Telephone Directory Alphabetization
827~886~Named Extension Dialing
828~887~Revolutionary Calendar
829~888~Donkey
830~889~Islands
831~890~Maze (II)
832~891~Syntrax
833~892~Finding words
834~893~Y3K Problem
835~894~Juggling Trams
836~895~Word Problem
837~896~Board Game
838~897~Anagrammatic Primes
839~898~Hole Cutter
840~899~Colour Circles
841~900~Brick Wall Patterns
842~901~From Databases to XML
843~902~Password Search
844~903~Spiral of Numbers
845~904~Overlapping Air Traffic Control Zones
846~905~Tacos Panchita
847~906~Rational Neighbor
848~907~Winterim Backpacking Trip
849~908~Re-connecting Computer Sites
850~909~The BitPack Data Compression Problem
851~910~TV game
852~911~Multinomial Coefficients
853~912~Live From Mars
854~913~Joana and the Odd Numbers
855~914~Jumping Champion
856~915~Stack of Cylinders
857~916~Dividing Land
858~917~Euro 2004
859~918~ASCII Mandelbrot
860~919~Cutting Polyominoes
861~920~Sunny Mountains
862~921~A Word Puzzle in the Sunny Mountains
863~922~Rectangle by the Ocean
864~923~One Against Many
865~924~Spreading The News
866~925~No more prerequisites please!
867~926~Walking Around Wisely
868~927~Integer Sequences from Addition of Terms
869~928~Eternal Truths
870~929~Number Maze
871~930~Polynomial Roots
872~931~The Probable n-Ascendants
873~932~Checking the N-Queens Problem
874~933~Water Flow
875~934~Overlapping Areas
876~935~Smart Strategy
877~936~Mars for Sale
878~937~Kriss Kross Puzzle
879~938~Gilix
880~939~Genes
881~940~Autobiographical Numbers
882~941~Permutations
883~942~Cyclic Numbers
884~943~Number Format Translator
885~944~Happy Numbers
886~945~Loading a Cargo Ship
887~946~A Pile of Boxes
888~947~Master Mind Helper
889~948~Fibonaccimal Base
890~949~Getaway
891~950~Tweedle Numbers
892~951~The Pieces of the Puzzle
893~952~Uno game
894~953~The Incredible Pile Machine
895~954~Tetravex solver
896~955~Interpreting Old Maps
897~956~The Minimum Slot Machine
898~957~Popes
899~958~A Homer's Holiday
900~959~Car Rallying
901~960~Gaussian Primes
902~961~Ambiguous or Incomplete Inductive Definitions
903~962~Taxicab Numbers
904~963~Spelling Corrector
905~964~Custom Language
906~965~Police Road Blocks
907~966~Lost Inheritances
908~967~Circular
909~968~Constellations
910~969~AlienAlgebra
911~970~Particles
912~971~Towers
913~972~Horizon Line
914~973~The Guessing Game
915~974~Kaprekar Numbers
916~975~Gutenberg Clumsy Helper
917~976~Bridge Building
918~977~Old West Rumours
919~978~Lemmings Battle!
920~979~The Abominable Triangleman
921~980~X-Express
922~981~Systematic Cyclic Redundancy Check Codes
923~982~Cube
924~983~Localized Summing for Blurring
925~984~Finding Haplotypes
926~985~Round and Round Maze
927~986~How Many?
928~987~Maternity
929~988~Many Paths One Destination
930~989~Su Doku
931~990~Diving for Gold
932~991~Safe Salutations
933~992~Customer Service Cost Evaluation
934~993~Product of digits
935~994~POP
936~995~Super Divisible Numbers
937~996~Find the Sequence
938~997~Show the Sequence
939~998~Dendogram
940~999~Book signatures
941~10000~Longest Paths
942~10001~Garden of Eden
943~10002~Center of Masses
944~10003~Cutting Sticks
945~10004~Bicoloring
946~10005~Packing polygons
947~10006~Carmichael Numbers
948~10007~Count the Trees
949~10008~What's Cryptanalysis?
950~10009~All Roads Lead Where?
951~10010~Where's Waldorf?
952~10011~Where Can You Hide?
953~10012~How Big Is It?
954~10013~Super long sums
955~10014~Simple calculations
956~10015~Joseph's Cousin
957~10016~Flip-Flop the Squarelotron
958~10017~The Never Ending Towers of Hanoi
959~10018~Reverse and Add
960~10019~Funny Encryption Method
961~10020~Minimal coverage
962~10021~Cube in the labirint
963~10022~Delta-wave
964~10023~Square root
965~10024~Curling up the cube
966~10025~The ? 1 ? 2 ? ... ? n = k problem
967~10026~Shoemaker's Problem
968~10027~Language Cardinality
969~10028~Demerit Points
970~10029~Edit Step Ladders
971~10030~Computer Dialogue
972~10031~Saskatchewan
973~10032~Tug of War
974~10033~Interpreter
975~10034~Freckles
976~10035~Primary Arithmetic
977~10036~Divisibility
978~10037~Bridge
979~10038~Jolly Jumpers
980~10039~Railroads
981~10040~Ouroboros Snake
982~10041~Vito's Family
983~10042~Smith Numbers
984~10043~Chainsaw Massacre
985~10044~Erdos Numbers
986~10045~Echo
987~10046~Fold-up Patterns
988~10047~The Monocycle
989~10048~Audiophobia
990~10049~Self-describing Sequence
991~10050~Hartals
992~10051~Tower of Cubes
993~10052~Inviting Politicians
994~10053~Envelopes
995~10054~The Necklace
996~10055~Hashmat the Brave Warrior
997~10056~What is the Probability ?
998~10057~A mid-summer night's dream.
999~10058~Jimmi's Riddles
1000~10059~The Hazard of CSE Department!
1001~10060~A hole to catch a man
1002~10061~How many zero's and how many digits ?
1003~10062~Tell me the frequencies!
1004~10063~Knuth's Permutation
1005~10064~Traveling in another Dimension
1006~10065~Useless Tile Packers
1007~10066~The Twin Towers
1008~10067~Playing with Wheels
1009~10068~The Treasure Hunt
1010~10069~Distinct Subsequences
1011~10070~Leap Year or Not Leap Year and ...
1012~10071~Back to High School Physics
1013~10072~Bob Laptop Woolmer and Eddie Desktop Barlow
1014~10073~Constrained Exchange Sort
1015~10074~Take the Land
1016~10075~Airlines
1017~10076~The Bumpy Robot
1018~10077~The Stern-Brocot Number System
1019~10078~The Art Gallery
1020~10079~Pizza Cutting
1021~10080~Gopher II
1022~10081~Tight Words
1023~10082~WERTYU
1024~10083~Division
1025~10084~Hotter Colder
1026~10085~The most distant state
1027~10086~Test the Rods
1028~10087~The Tajmahal of ++Y2k
1029~10088~Trees on My Island
1030~10089~Repackaging
1031~10090~Marbles
1032~10091~The Valentine's Day
1033~10092~The Problem with the Problem Setter
1034~10093~An Easy Problem!
1035~10094~Place the Guards
1036~10095~Saving the Planet
1037~10096~The Richest Man of the Universe
1038~10097~The Color Game
1039~10098~Generating Fast
1040~10099~The Tourist Guide