Page 3 of 3
Posted: Mon Nov 23, 2015 12:37 am
by adark
Lua:
Code: Select all
local file = io.open("lorem.txt")
local t = string.lower(file:read("*all"))
file:close()
for word in t:gmatch("%a+") do
local count = 0
for _ in t:gmatch(word) do
count = count + 1
if count == 2 then
break
end
end
if count == 1 then
print(word)
break
end
end
Posted: Mon Jul 11, 2016 11:50 am
by mlynekt
Code: Select all
tr -c "a-zA-Z" "\n" < lorem.txt | sort | uniq -u
Posted: Wed Jul 13, 2016 7:20 am
by xiexun162534
The code I wrote in Challenge 3280 worked.
Javascript Solution
Posted: Mon Aug 29, 2016 2:56 pm
by Warscyther
Thought I'ld post my quick Javascript solution which you can run directly in browser..
Code: Select all
var preInner = pre.innerHTML.replace(/[.,\/#!$%\^&\*;:{}=\-_`~()]/g,""); // Remove punctuation.
preInner = preInner.replace(/\r?\n|\r/g, " "); // Remove all newline carriages
var myArray = preInner.split(" "); // Split into array
var sorted = myArray.slice().sort(); // Sort it alphabetically
var newArray = []; // Results array
var count = 0;
// If the current one is same as the next one - increase count.
for (var i =0; i < sorted.length -1; i++){
if(sorted[i] == sorted[i+1]){
count++;
} else { // If the next one is a new one, check the count
if(count > 0){ // There more than one previous one, reset the count and reloop
count = 0;
} else { // Only one counted current and reached now one? - Add to results array
newArray.push(sorted[i]);
count = 0;
}
}
}
newArray
[/code]
my Linux solution
Posted: Sat Nov 17, 2018 2:48 pm
by as33r
well i use Linux commands to solve this, and seems that my solution is pretty easy rather then others.
Code: Select all
# for i in $(cat lorem.txt); do echo $i ; done > split_lorem.txt
# cat split_lorem.txt | sort | uniq -c | grep ' 1 '
1 auctor.
1 blandit.
1 fermentum.
1 odio,
1 scatterbrained
1 suscipit.
1 ultrices,
1 vehicula.
here only one line is without suffix. so that's the flag
