Every day, MLB Immaculate Grid releases a new puzzle to test the knowledge of fans, young and old, everywhere.
Since being introduced by Baseball Reference earlier this year, the game has enjoyed widespread popularity.
The 3 x 3 grid comes equipped with hints staggered along the x and y axes. While teams are usually used as clues, sometimes career achievements are used instead. It is up to users to populate the nine squares with names of MLB stars.
•

70% Win
(110-25-1)
70% Win
(110-25-1)
70% Win
(110-25-1)
'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "Baseball", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }();On August 19, the Immaculate Grid asked which New York Yankees players have hit .300 in a season. While several members of baseball's best-known team have hit that milestone, today we will be examining a few of the bigger names.
"Immaculate Grid 139. Retweet or reply with your score" - Immaculate GridWhich New York Yankees hitters have batted .300 or over in a season? MLB Immaculate Grid August 19
Aaron Judge is the most recent player to hit .300 in a season. Last year, the superslugger connected for 62 home runs, which smashed Roger Maris' single-season record of 61, set in 1961.
In addition to making history, Judge hit .311, just 0.05 points behind Luis Arraez of the Minnesota Twins. Had he surpassed Arraez, Judge would have won the first NL Triple Crown in a decade.
"Aaron Judge is not in the New York Yankees' lineup for their regular season finale. He's currently .004 behind Luis Arraez for the AL batting title and a chance at the Triple Crown" - ESPNOver his twenty years in MLB, Derek Jeter played exclusively for the Yankees. In that time, the shortstop hit over .300 in twelve seasons.
Jeter's time in New York is remembered for his strong play at shortstop, which won the 2022 Hall of Fame inductee five Gold Gloves.
Babe Ruth's .349 career batting average places him first on the all-time New York Yankees leaderboard. During his heyday in the 1920s, The Bambino was unstoppable. In 1924, one year after winning the MVP Award, Ruth won the AL batting title after posting a whopping .378 figure.
"#10 all-time career Batting Average. Babe Ruth - .342" - OldTimeHardballIn his rookie season of 2005, Robinson Cano hit .297 with 14 home runs and an OPS of .778. The following season, the young Dominican would post a .342 batting average, winning both a Gold Glove, and a Silver Slugger.
A .309 hitter during his nine seasons with the Yankees, Cano would encounter issues after joining the New York Mets later in his career. Cano was suspended for the entire 2021 season on account of steroid use.
Quick Links
More from Sportskeeda
" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1634677, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1634677); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1634677) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1634677) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJqRqLKjrculZqedp6h6uLTInJ9msZGjuKax0manpZmpmr%2B0edGemqiqlJqxbn%2BPaWSarpdiwKat0qilZqWcl3qqucyamq6kkamybrPRoptmmZ6oxKa%2B0maYrp%2BlqMFufZg%3D