-
56 votes
-
Amazon and the bridge too far
5 votes -
Raised by YouTube - The platform’s entertainment for children is weirder—and more globalized—than adults could have expected
11 votes -
We hold people with power to account. Why not algorithms?
12 votes -
The Foundations of Algorithmic Bias
8 votes -
Idle musings about the Pollard Rho method of factoring integers
5 votes -
Who controls your data? Nine reporters in London, Paris, New York & San Francisco filed more than 150 requests for personal data to 30+ popular tech companies
8 votes -
The new science of seeing around corners
10 votes -
California abolishes cash bail, replacing with algorithmic based risk assessment
17 votes -
Facebook is rating the trustworthiness of its users on a scale from zero to 1
25 votes -
Introduction to A*
10 votes -
Programming Challenge: Two Wizards algorithm challenge
I'm running out of ideas, if you have any, please make your own programming challenge. This challenge is about designing algorithm to solve this problem. Let's have game field of size x, y (like...
I'm running out of ideas, if you have any, please make your own programming challenge.
This challenge is about designing algorithm to solve this problem.
Let's have game field of size x, y (like in chess). There are two wizards, that are standing at
[ 0, 0 ]
and are teleporting themselves using spells. The goal is to not be the one who teleports them outside of the map. Each spell teleports wizard by at least +1 tile. Given map size and collection of spells, who wins (they do not make any mistakes)?Here are few examples:
Example 1
x:4,y:5
Spells:
{ 0, 2 }
Output:
false
Description: Wizard A starts, teleporting both of them to 0, 2. Wizard B teleports them to 0, 4. Wizard A has to teleport them to 0,6, which overflows from the map, so he loses the game. Because starting wizard (wizard A) loses, output is
false
.Example 2
x:4,y:4
Spells:
{ 1,1 }
Output:
true
Example 3
x:4,y:5
Spells:
{ 1,1 },{ 3,2 },{ 1,4 },{ 0,2 },{ 6,5 },{ 3,1 }
Output:
true
Example 4
x:400,y:400
Spells:
{9,2},{15,1},{1,4},{7,20},{3,100},{6,4},{9,0},{7,0},{8,3},{8,44}
Ouput:
true
Good luck! I'll comment here my solution in about a day.
Note: This challenge comes from fiks, programming competition by Czech college ČVUT (CTU).
15 votes -
Can a computer write a sonnet as well as Shakespeare? The best version of the algorithm fooled people nearly fifty percent of the time
3 votes -
Will Tildes eventually move to a Reddit-hot-like post sorting algorithm?
The current 4chan-like default sorting method doesn't look like it's going to scale with more people and posts coming in, thoughts?
7 votes -
Shor, I'll Do It - A Simple Explanation of the Algorithm Quantum Computers would use to crack RSA
4 votes -
I work in ML and more specifically algorithmic search
I'm interested in talking with anyone in eCommerce, or interested in ML, AI, Search or whatever you think I might care about ;) What do you all do?
7 votes -
Some Amazon reviews are too good to be believed. They're paid for.
21 votes -
Bad romance - To cash in on Kindle Unlimited, a cabal of authors gamed Amazon's algorithm
10 votes -
Truth, disrupted
8 votes -
The rise of digital dictatorships - Prof. Yuval Noah Harari
5 votes -
How a group of romance writers cashed in on Amazon's Kindle Unlimited
3 votes -
Driverless cars could make our roads safer and reduce congestion. But the algorithms driving them will also have to make life-or-death decisions.
10 votes -
How computers parse the ambiguity of everyday language
8 votes -
Inventor says Google is patenting work he put in the public domain
17 votes -
Repaint an image in a custom style using a neural network based algorithm
5 votes -
Instagram feed algorithm seems to take into account your WhatsApp correspondence.
I've been trying to tame tracking from services like Facebook. I installed many ad blockers and tracker blockers on all of my browser, I don't install FB app on my phone, but I still install...
I've been trying to tame tracking from services like Facebook. I installed many ad blockers and tracker blockers on all of my browser, I don't install FB app on my phone, but I still install Instagram app and WhatsApp.
Something creepy (but totally expected) just happened to me. I haven't really been in contact with a friend of mine for quite some time, and we finally chatted again using WhatsApp. Not long after that I opened Instagram, and her photo was the first one I saw haha. It's funny because I don't think I've seen any photos from her in quite some time before this on my IG feed.
Might just be a coincidence, but with all discussion about how creepy they're trying to make their platform as sticky as possible, I wouldn't be surprised if IG's feed algorithm do take into account your correspondence on WhatsApp as well (I live in a country where everyone uses WhatsApp).
10 votes -
New Toronto Declaration calls on algorithms to respect human rights
8 votes -
Math can’t solve everything: Questions we need to be asking before deciding an algorithm is the answer
5 votes