Search found 4 matches
- Wed Jun 26, 2013 9:37 pm
- Forum: Volume 4 (400-499)
- Topic: 462 - Bridge Hand Evaluator
- Replies: 32
- Views: 16596
Re: 462 Problem
of course!
- Tue Jun 25, 2013 1:36 pm
- Forum: Volume 4 (400-499)
- Topic: 462 - Bridge Hand Evaluator
- Replies: 32
- Views: 16596
Re: 462 Problem
My code:
#include <iostream>
#include <cstdlib>
using namespace std;
typedef enum {Spades = 0, Hearts, Diamonds, Clubs} suite;
typedef enum {Ace = 0, Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten, Jack, Queen, King} rank;
const int numberSuites = 4;
const int numberRanks = 13;
const int ...
#include <iostream>
#include <cstdlib>
using namespace std;
typedef enum {Spades = 0, Hearts, Diamonds, Clubs} suite;
typedef enum {Ace = 0, Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten, Jack, Queen, King} rank;
const int numberSuites = 4;
const int numberRanks = 13;
const int ...
- Fri Jun 21, 2013 7:07 pm
- Forum: Volume 4 (400-499)
- Topic: 462 - Bridge Hand Evaluator
- Replies: 32
- Views: 16596
Re: 462 Problem
I get WA even though my solution passes all the test cases posted here.
Puzzled...
Puzzled...
- Fri Jun 21, 2013 4:17 pm
- Forum: Volume 7 (700-799)
- Topic: 724 - Reverse
- Replies: 14
- Views: 7255
Re: 724 - Reverse
1. Problem text is no longer found
2. I think I have a solution and I am suspecting a mistake in the accept/reject for this problem.
2. I think I have a solution and I am suspecting a mistake in the accept/reject for this problem.