Add Guessing Game
Implement a guessing game with user-selectable range via slider. Includes two modes: user guesses computer's number, and computer guesses user's number using random, linear, or binary search strategies.
This commit is contained in:
parent
aaa3b7f06f
commit
a981f2ec87
4 changed files with 559 additions and 0 deletions
13
src/pages/GuessingGamePage.tsx
Normal file
13
src/pages/GuessingGamePage.tsx
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import GuessingGame from '@/components/GuessingGame';
|
||||
|
||||
const GuessingGamePage = () => {
|
||||
return (
|
||||
<div className="min-h-screen bg-background">
|
||||
<div className="container mx-auto px-4 py-8">
|
||||
<GuessingGame showSocialShare={true} />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default GuessingGamePage;
|
||||
Loading…
Add table
Add a link
Reference in a new issue