Skip to content

helvm/intercal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

INTERCAL sample programs

This repository contains implementations of selected algorithms in INTERCAL.

Included algorithms

Check if string is a palindrome

Input format: First line contains single integer, number of letters in the word. Second line contain a word of previously given size.
Output format: Single line with information if given word is a palindrome or not.
Sample input:

SEVEN
ABCDCBA

Sample output:

PALINDROME

Quicksort

Input format: First line contains single integer n, number of elements in the array. Each of the following n lines contains subsequent integers from the array.
Output format: n lines of subsequent integers in sorted array.
Sample input:

FOUR
FOUR
THREE
ONE
TWO

Sample output:

I
II
III
IV

About

No description or website provided.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

Packages

No packages published

Languages

  • Assembly 100.0%